home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / args_bat.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  67 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11465);
  10.  script_version ("$Revision: 1.3 $");
  11.  script_cve_id("CAN-1999-1180");
  12.  
  13.  name["english"] = "args.bat";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The CGI 'args.bat' (and/or 'args.cmd') is installed. This CGI has
  19. a well known security flaw that lets an attacker upload 
  20. arbitrary files on the remote web server. 
  21.  
  22. Solution : remove it from /cgi-dos.
  23.  
  24. Risk factor : High";
  25.  
  26.  
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks for the presence of /cgi-dos/args.bat";
  31.  
  32.  script_summary(english:summary["english"], francais:summary["francais"]);
  33.  
  34.  script_category(ACT_GATHER_INFO);
  35.  
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  38.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  39.  family["english"] = "CGI abuses";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes", "no404.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50.  
  51. include("http_func.inc");
  52. include("http_keepalive.inc");
  53.  
  54.  
  55. port = get_http_port(default:80);
  56.  
  57. if(!get_port_state(port))exit(0);
  58.  
  59. res = is_cgi_installed_ka(item:"/cgi-dos/args.bat", port:port);
  60. if( res == NULL ) exit (0);
  61. if( res != 0 ) { security_hole(port); exit(0); }
  62.  
  63. res = is_cgi_installed_ka(item:"/cgi-dos/args.cmd", port:port);
  64.  
  65. if( res == NULL ) exit (0);
  66. if( res != 0 ) { security_hole(port); exit(0); }
  67.